home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML Instance.sea / XML Instance / Required / extplugin.jar / com / extensibility / plugin / api / TreeBrowseItem.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-07-31  |  310 b   |  13 lines

  1. package com.extensibility.plugin.api;
  2.  
  3. public interface TreeBrowseItem {
  4.    int TYPE_FOLDER = 0;
  5.    int TYPE_FILE = 1;
  6.  
  7.    String getName();
  8.  
  9.    int getType();
  10.  
  11.    String toString();
  12. }
  13.